home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2003 March / DPPCPRO0303.ISO / Components / Microsoft ASP / _SETUP.1 / ASPWizard.jar / asp / wizard / def / DefSearch.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-20  |  1.5 KB  |  54 lines

  1. package asp.wizard.def;
  2.  
  3. public class DefSearch extends DefAbstract {
  4.    private int _buttonType;
  5.    private int _buttonImage;
  6.    private String _buttonText;
  7.    private int _matching;
  8.    private int _resultPage;
  9.  
  10.    public void setButtonType(int buttonType) {
  11.       this._buttonType = buttonType;
  12.    }
  13.  
  14.    public void setButtonImage(int buttonImage) {
  15.       this._buttonImage = buttonImage;
  16.    }
  17.  
  18.    public void setButtonText(String buttonText) {
  19.       this._buttonText = buttonText;
  20.    }
  21.  
  22.    public void setMatching(int matching) {
  23.       this._matching = matching;
  24.    }
  25.  
  26.    public void setResultPage(int resultPage) {
  27.       this._resultPage = resultPage;
  28.    }
  29.  
  30.    public int getButtonType() {
  31.       return this._buttonType;
  32.    }
  33.  
  34.    public int getButtonImage() {
  35.       return this._buttonImage;
  36.    }
  37.  
  38.    public String getButtonText() {
  39.       return this._buttonText;
  40.    }
  41.  
  42.    public int getMatching() {
  43.       return this._matching;
  44.    }
  45.  
  46.    public int getResultPage() {
  47.       return this._resultPage;
  48.    }
  49.  
  50.    public String getBaseName() {
  51.       return "MSDBSearch";
  52.    }
  53. }
  54.